From d2b0a7348a95b34ab7bf0c235720e2f5921e8748 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 2 Aug 2004 04:05:34 +0000 Subject: [PATCH] Fix progressive loading of 8bit pcx files. (#148518, Magnus Bergman) Sun Aug 1 23:57:06 2004 Matthias Clasen * io-pcx.c (pcx_increment_load_data_1): Fix progressive loading of 8bit pcx files. (#148518, Magnus Bergman) --- gdk-pixbuf/ChangeLog | 5 +++++ gdk-pixbuf/io-pcx.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index b38bdfcc3b..75bbe68bdf 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +Sun Aug 1 23:57:06 2004 Matthias Clasen + + * io-pcx.c (pcx_increment_load_data_1): Fix progressive + loading of 8bit pcx files. (#148518, Magnus Bergman) + 2004-08-01 Matthias Clasen * === Released 2.5.1 === diff --git a/gdk-pixbuf/io-pcx.c b/gdk-pixbuf/io-pcx.c index 6b44174033..0b1f9b1596 100644 --- a/gdk-pixbuf/io-pcx.c +++ b/gdk-pixbuf/io-pcx.c @@ -353,7 +353,7 @@ pcx_increment_load_data_1(struct pcx_context *context) } if(context->updated_func) - context->updated_func(context->pixbuf, 0, context->current_line, context->width, 1, context->user_data); + context->updated_func(context->pixbuf, 0, 0, context->width, context->height, context->user_data); context->current_line++; -- 2.30.2